-
Notifications
You must be signed in to change notification settings - Fork 16
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
publish-image action #78
Conversation
brooksn
commented
Sep 11, 2024
•
edited
Loading
edited
- use rancher/ecm-distro-tools/actions/publish-image to build and push images
- adds make target push-image
- adds sbom to docker build arguments
- signs images that are pushed to the prime registry
Signed-off-by: Brooks Newberry <[email protected]>
Signed-off-by: Brooks Newberry <[email protected]>
--target coredns \ | ||
--tag $(ORG)/hardened-coredns:$(TAG) \ | ||
--tag $(ORG)/hardened-coredns:$(TAG)-$(ARCH) \ | ||
$(BUILD_OPTS) \ | ||
--load \ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I saw that in some repos we are using --pull and --load whereas in this one we only have --load, could that be a problem?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should not cause any problems. The image-build make target is only used in local development, and I left the --pull
option in place if it was already there.
Signed-off-by: Brooks Newberry <[email protected]>
Signed-off-by: Brooks Newberry <[email protected]>